home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / usr / share / doc / libgnome2-canvas-perl / README < prev    next >
Encoding:
Text File  |  2004-08-15  |  2.6 KB  |  86 lines

  1.  
  2. Gnome2::Canvas version 1.002
  3. ============================
  4.  
  5. The Gnome2::Canvas module allows a perl developer to use the GnomeCanvas
  6. widget with Gtk2-Perl.  Find out more about Gnome+ at http://www.gnome.org.
  7.  
  8. Like the Gtk2 module on which it depends, Gnome2::Canvas follows the C API
  9. of libgnomecanvas-2.0 as closely as possible while still being perlish.
  10. Thus, the C API reference remains the canonical documentation.
  11.  
  12. To discuss gtk2-perl, ask questions and flame/praise the authors,
  13. join gtk-perl-list@gnome.org at lists.gnome.org.
  14.  
  15. Also have a look at the gtk2-perl website and sourceforge project page,
  16. http://gtk2-perl.sourceforge.net
  17.  
  18.  
  19. INSTALLATION
  20.  
  21. To install this module type the following:
  22.  
  23.    perl Makefile.PL
  24.    make
  25.    make test
  26.    make install
  27.  
  28.  
  29. To avoid installing to a system directory, since this is a beta release,
  30. you can change the installation prefix at Makefile.PL time with
  31.  
  32.    perl Makefile.PL PREFIX=/some/other/place
  33.  
  34. This will install the module to the subdirectory lib/perl5 under the given
  35. prefix.  If this is not already in perl's include path, you'll need to tell
  36. perl how to get to this library directory so you can use it; there are three
  37. ways:
  38.  
  39.   in your environment (the easiest):
  40.     # assuming a bourne-style shell
  41.     PERL5LIB=/some/other/place/lib/perl5/site_perl
  42.     export PERL5LIB
  43.  
  44.   on the perl command line:
  45.     perl -I /some/other/place/lib/perl5/site_perl yourscript
  46.  
  47.   in the code of your perl script:
  48.     use lib '/some/other/place/lib/perl5/site_perl';
  49.   
  50.  
  51. DEPENDENCIES
  52.  
  53. This module requires these other modules and libraries:
  54.  
  55.   perl >= 5.8.0
  56.   Glib >= 1.040 (perl module and requisite C libraries)
  57.   Gtk2 >= 1.040 (perl module and requisite C libraries)
  58.   libgnomecanvas > 2.x (C library)
  59.  
  60. In order to build it from source, you'll also need
  61.  
  62.   ExtUtils::Depends >= 0.2
  63.   ExtUtils::PkgConfig >= 1.03
  64.  
  65.  
  66. COPYRIGHT AND LICENSE
  67.  
  68. Copyright (C) 2003-2004 by the gtk2-perl team (see the file AUTHORS for a
  69. complete list)
  70.  
  71. This library is free software; you can redistribute it and/or
  72. modify it under the terms of the GNU Library General Public
  73. License as published by the Free Software Foundation; either
  74. version 2 of the License, or (at your option) any later version.
  75.  
  76. This library is distributed in the hope that it will be useful,
  77. but WITHOUT ANY WARRANTY; without even the implied warranty of
  78. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  79. Library General Public License for more details.
  80.  
  81. You should have received a copy of the GNU Library General Public
  82. License along with this library; if not, write to the 
  83. Free Software Foundation, Inc., 59 Temple Place - Suite 330, 
  84. Boston, MA  02111-1307  USA.
  85.  
  86.